home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr26 / blrmu13.zip / TONL.ASM < prev    next >
Assembly Source File  |  1993-06-01  |  435b  |  21 lines

  1. page ,132
  2. title tonl ( turn off num lock ) - as of 07/31/90 - 07:30 pm
  3. ;
  4. code     segment para public 'code'
  5. ;
  6.          org   256
  7. ;
  8.          assume cs:code
  9. ;
  10. tonl:
  11. ;
  12.          mov   ax,0                  ; set
  13.          mov   ds,ax                 ; ds = 0
  14.          mov   bx,0417h              ; ptr to Num Lock
  15.          and   byte ptr [bx],0DFH    ; and with x'df'
  16.          ret
  17. ;
  18. code     ends
  19. ;
  20.          end   tonl
  21.